﻿2026-08-19T01:31:14.3181886Z ##[group]Run $cargo  = @(cargo --version)[0]
2026-08-19T01:31:14.3182431Z [36;1m$cargo  = @(cargo --version)[0][0m
2026-08-19T01:31:14.3242058Z [36;1m$rustc  = @(rustc --version)[0][0m
2026-08-19T01:31:14.3242323Z [36;1m$clippy = @(cargo clippy --version)[0][0m
2026-08-19T01:31:14.3242654Z [36;1m# rustup is how both boxes are managed today, but the three versions above are[0m
2026-08-19T01:31:14.3242981Z [36;1m# what judges the lane. A box without rustup must still print a complete record:[0m
2026-08-19T01:31:14.3243323Z [36;1m# under GitHub's pwsh wrapper ($ErrorActionPreference = 'stop') a missing COMMAND[0m
2026-08-19T01:31:14.3243674Z [36;1m# is a terminating error, so absence is tested rather than caught, and a present[0m
2026-08-19T01:31:14.3243992Z [36;1m# rustup's non-zero exit is cleared so the trailing $LASTEXITCODE check cannot[0m
2026-08-19T01:31:14.3244241Z [36;1m# red a step whose whole job is to print.[0m
2026-08-19T01:31:14.3244471Z [36;1m$active = if (Get-Command rustup -ErrorAction SilentlyContinue) {[0m
2026-08-19T01:31:14.3244738Z [36;1m  @(rustup show active-toolchain 2>$null)[0][0m
2026-08-19T01:31:14.3244909Z [36;1m} else { $null }[0m
2026-08-19T01:31:14.3245049Z [36;1m$global:LASTEXITCODE = 0[0m
2026-08-19T01:31:14.3245238Z [36;1mif (-not $active) { $active = "(no rustup on PATH)" }[0m
2026-08-19T01:31:14.3245509Z [36;1mWrite-Host "TOOLCHAIN leg=windows runner=$env:RUNNER_NAME active=$active"[0m
2026-08-19T01:31:14.3245770Z [36;1mWrite-Host "TOOLCHAIN leg=windows $cargo"[0m
2026-08-19T01:31:14.3245958Z [36;1mWrite-Host "TOOLCHAIN leg=windows $rustc"[0m
2026-08-19T01:31:14.3246159Z [36;1mWrite-Host "TOOLCHAIN leg=windows clippy: $clippy"[0m
2026-08-19T01:31:14.3246384Z [36;1mif (-not $cargo -or -not $rustc -or -not $clippy) {[0m
2026-08-19T01:31:14.3246723Z [36;1m  Write-Error "TOOLCHAIN leg=windows INCOMPLETE — a version this run is judged by did not print"[0m
2026-08-19T01:31:14.3247013Z [36;1m  exit 1[0m
2026-08-19T01:31:14.3247129Z [36;1m}[0m
2026-08-19T01:31:14.3247236Z [36;1mexit 0[0m
2026-08-19T01:31:14.3253159Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
2026-08-19T01:31:14.3253369Z env:
2026-08-19T01:31:14.3253652Z   SPT_ATTACH_GATE_WATCHDOG_MS: 120000
2026-08-19T01:31:14.3253810Z   SPT_ATTACH_IPC_DEADLINE_MS: 30000
2026-08-19T01:31:14.3256976Z   HEAVY: (package(spt-daemon) & kind(test) & binary(/^(attach|brain_swap|broker|budget|conn_blackhole_lifecycle|controller_lease|daemon_e2e|daemon_lifecycle_real_brain|digest|dispatch|driven_by_selfheal|endpoint_lifecycle|endpoint_survival|handoff|idempotent|inject_control_wedge|input_ack_deadlock|mesh_recovery|net_worker_starve|redispatch|redispatch_stall|registry_lifecycle|render_lifecycle|resize_geometry_epoch|resize_presentation_barrier|restart_replay_lifetime|resume|shellchan|spawn_truth|transport_death_eof|two_origin_spanning|twohost)$/)) | (package(spt) & kind(test) & binary(/^(attach_wedge_e2e|bind_cwd_project_e2e|bind_honest_cross_perch_e2e|brain_respawn_rename|brain_split|brain_survive|daemon_refresh_e2e|dummy_harness_e2e|endpoint_teardown_authority_e2e|engine_room_bringup_e2e|gateway_owner_shell_e2e|commune_two_cwd_e2e|job_escape_e2e|knock_approve_not_hostage_e2e|knock_mutual_cross_node_e2e|live_adapt_translation_swap_e2e|livehost_bootgate_e2e|multi_subnet_bringup_e2e|n1_pairing|oneliner_e2e|projindex_reader_e2e|projindex_writer_e2e|psyche_download_e2e|rc_attach_truth|resume_template_e2e|run_no_dup_session_e2e|wake_resume_bind_e2e)$/)) | (package(spt-term) & kind(test))
2026-08-19T01:31:14.3260626Z ##[endgroup]
2026-08-19T01:31:15.9295281Z TOOLCHAIN leg=windows runner=hfenduleam active=stable-x86_64-pc-windows-msvc (default)
2026-08-19T01:31:15.9298018Z TOOLCHAIN leg=windows cargo 1.93.0 (083ac5135 2025-12-15)
2026-08-19T01:31:15.9300653Z TOOLCHAIN leg=windows rustc 1.93.0 (254b59607 2026-01-19)
2026-08-19T01:31:15.9303426Z TOOLCHAIN leg=windows clippy: clippy 0.1.93 (254b59607d 2026-01-19)
